home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 9988 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.3 KB

  1. Path: mail2news.demon.co.uk!genesis.demon.co.uk
  2. From: Lawrence Kirby <fred@genesis.demon.co.uk>
  3. Newsgroups: comp.lang.c
  4. Subject: Re: PLEASE Help! :(
  5. Date: Thu, 14 Mar 96 20:50:53 GMT
  6. Organization: none
  7. Message-ID: <826836653snz@genesis.demon.co.uk>
  8. References: <4hsqk2$4d7@deadbird.db.erau.edu> <Do9GMv.BKF@iquest.net>
  9. Reply-To: fred@genesis.demon.co.uk
  10. X-NNTP-Posting-Host: genesis.demon.co.uk
  11. X-Newsreader: Demon Internet Simple News v1.27
  12. X-Mail2News-Path: genesis.demon.co.uk
  13.  
  14. In article <Do9GMv.BKF@iquest.net> dlmiller@iquest.net "Doug Miller" writes:
  15.  
  16. >This sscanf statement contains most of your problems:
  17. >
  18. >+sscanf(inbuff,"%d %s %s %4.2f", &IntArr[index],&WordsArr1[index],
  19. >&WordsArr2[index],&FloatArr[index]);
  20. >
  21. >1) by including spaces in your format specifiers, you have instructed the
  22. > program to *demand*
  23. >at least one space between each field, and it *will* fail if there isn't.
  24.  
  25. No true. White-space in a *scanf() format specifier cause while-space
  26. in the input stream/string to be skipped over. If the first character it
  27. encounters is a non-white-space character it does nothing. It can't cause
  28. the conversion to fail.
  29.  
  30. -- 
  31. -----------------------------------------
  32. Lawrence Kirby | fred@genesis.demon.co.uk
  33. Wilts, England | 70734.126@compuserve.com
  34. -----------------------------------------
  35.